home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1992, 1993, 1994, Silicon Graphics, Inc.
- * All Rights Reserved.
- *
- * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
- * the contents of this file may not be disclosed to third parties, copied or
- * duplicated in any form, in whole or in part, without the prior written
- * permission of Silicon Graphics, Inc.
- *
- * RESTRICTED RIGHTS LEGEND:
- * Use, duplication or disclosure by the Government is subject to restrictions
- * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
- * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
- * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
- * rights reserved under the Copyright Laws of the United States.
- */
- #ifndef OBJFNTDEF
- #define OBJFNTDEF
-
- typedef struct chardesc {
- short movex, movey; /* advance */
- short llx, lly; /* bounding box */
- short urx, ury;
- short *data; /* char data */
- long datalen;
- } chardesc;
-
- typedef struct objfnt {
- struct objfnt *freeaddr; /* if freeaddr != 0, objfnt is one chunck */
- short type;
- short charmin, charmax;
- short nchars;
- short scale;
- chardesc *chars;
- } objfnt;
-
- #define OFMAGIC 0x93339333
-
- #define TM_TYPE 1
- #define PO_TYPE 2
- #define SP_TYPE 3
-
- /* ops for tmesh characters */
-
- #define TM_BGNTMESH (1)
- #define TM_SWAPTMESH (2)
- #define TM_ENDBGNTMESH (3)
- #define TM_RETENDTMESH (4)
- #define TM_RET (5)
-
- /* ops for poly characters */
-
- #define PO_BGNLOOP (1)
- #define PO_ENDBGNLOOP (2)
- #define PO_RETENDLOOP (3)
- #define PO_RET (4)
-
- /* ops for spline characters */
-
- #define SP_MOVETO (1)
- #define SP_LINETO (2)
- #define SP_CURVETO (3)
- #define SP_CLOSEPATH (4)
- #define SP_RETCLOSEPATH (5)
- #define SP_RET (6)
-
-
- #define MIN_ASCII ' '
- #define MAX_ASCII '~'
- #define NASCII (96)
-
- #define NOBBOX (30000)
-
- typedef struct pschar {
- char *name;
- int code;
- int prog;
- } pschar;
-
- extern pschar charlist[NASCII];
-
- objfnt *fontname();
- objfnt *readobjfnt();
- objfnt *newobjfnt();
- float fontstringwidth();
- short *getcharprog();
- chardesc *getchardesc();
- char *asciiname();
-
- #endif
-